home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet internetowy / Przegladarki internetowe / Mozilla Seamonkey 1.0.5 pl / seamonkey-1.0.5.pl-PL.win32.installer.exe / VENKMAN.XPI / bin / chrome / venkman.jar / content / venkman / venkman-msg.js < prev    next >
Encoding:
JavaScript  |  2004-04-18  |  5.5 KB  |  172 lines

  1. /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*-
  2.  *
  3.  * ***** BEGIN LICENSE BLOCK *****
  4.  * Version: MPL 1.1/GPL 2.0/LGPL 2.1
  5.  *
  6.  * The contents of this file are subject to the Mozilla Public License Version
  7.  * 1.1 (the "License"); you may not use this file except in compliance with
  8.  * the License. You may obtain a copy of the License at
  9.  * http://www.mozilla.org/MPL/
  10.  *
  11.  * Software distributed under the License is distributed on an "AS IS" basis,
  12.  * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
  13.  * for the specific language governing rights and limitations under the
  14.  * License.
  15.  *
  16.  * The Original Code is The JavaScript Debugger.
  17.  *
  18.  * The Initial Developer of the Original Code is
  19.  * Netscape Communications Corporation.
  20.  * Portions created by the Initial Developer are Copyright (C) 1998
  21.  * the Initial Developer. All Rights Reserved.
  22.  *
  23.  * Contributor(s):
  24.  *   Robert Ginda, <rginda@netscape.com>, original author
  25.  *
  26.  * Alternatively, the contents of this file may be used under the terms of
  27.  * either the GNU General Public License Version 2 or later (the "GPL"), or
  28.  * the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
  29.  * in which case the provisions of the GPL or the LGPL are applicable instead
  30.  * of those above. If you wish to allow use of your version of this file only
  31.  * under the terms of either the GPL or the LGPL, and not to allow others to
  32.  * use your version of this file under the terms of the MPL, indicate your
  33.  * decision by deleting the provisions above and replace them with the notice
  34.  * and other provisions required by the GPL or the LGPL. If you do not delete
  35.  * the provisions above, a recipient may use your version of this file under
  36.  * the terms of any one of the MPL, the GPL or the LGPL.
  37.  *
  38.  * ***** END LICENSE BLOCK ***** */
  39.  
  40. function initMsgs ()
  41. {
  42.     console.bundleList = new Array();
  43.     console.defaultBundle = 
  44.         initStringBundle("chrome://venkman/locale/venkman.properties");
  45. }
  46.  
  47. function initStringBundle (bundlePath)
  48. {
  49.     const nsIPropertyElement = Components.interfaces.nsIPropertyElement;
  50.  
  51.     var pfx;
  52.     if (console.bundleList.length == 0)
  53.         pfx = "";
  54.     else
  55.         pfx = console.bundleList.length + ":";
  56.  
  57.     var bundle = srGetStrBundle(bundlePath);
  58.     console.bundleList.push(bundle);
  59.     var enumer = bundle.getSimpleEnumeration();
  60.  
  61.     while (enumer.hasMoreElements())
  62.     {
  63.         var prop = enumer.getNext().QueryInterface(nsIPropertyElement);
  64.         var ary = prop.key.match (/^(msg|msn)/);
  65.         if (ary)
  66.         {
  67.             var constValue;
  68.             var constName = prop.key.toUpperCase().replace (/\./g, "_");
  69.             if (ary[1] == "msn")
  70.                 constValue = pfx + prop.key;
  71.             else
  72.                 constValue = prop.value.replace (/^\"/, "").replace (/\"$/, "");
  73.  
  74.             window[constName] = constValue;
  75.         }
  76.     }
  77.  
  78.     return bundle;
  79. }
  80.  
  81. function getMsg (msgName, params, deflt)
  82. {
  83.     try
  84.     {    
  85.         var bundle;
  86.         var ary = msgName.match (/(\d+):(.+)/);
  87.         if (ary)
  88.         {
  89.             return (getMsgFrom(console.bundleList[ary[1]], ary[2], params,
  90.                                deflt));
  91.         }
  92.         
  93.         return (getMsgFrom(console.bundleList[0], msgName, params, deflt));
  94.     }
  95.     catch (ex)
  96.     {
  97.         ASSERT (0, "Caught exception getting message: " + msgName + "/" +
  98.                 params);
  99.         return deflt ? deflt : msgName;
  100.     }
  101. }
  102.  
  103. function getMsgFrom (bundle, msgName, params, deflt)
  104. {
  105.     try 
  106.     {
  107.         var rv;
  108.         
  109.         if (params && params instanceof Array)
  110.             rv = bundle.formatStringFromName (msgName, params, params.length);
  111.         else if (params || params == 0)
  112.             rv = bundle.formatStringFromName (msgName, [params], 1);
  113.         else
  114.             rv = bundle.GetStringFromName (msgName);
  115.         
  116.         /* strip leading and trailing quote characters, see comment at the
  117.          * top of venkman.properties.
  118.          */
  119.         rv = rv.replace (/^\"/, "");
  120.         rv = rv.replace (/\"$/, "");
  121.  
  122.         return rv;
  123.     }
  124.     catch (ex)
  125.     {
  126.         if (typeof deflt == "undefined")
  127.         {
  128.             ASSERT (0, "caught exception getting value for ``" + msgName +
  129.                     "''\n" + ex + "\n");
  130.             return msgName;
  131.         }
  132.         return deflt;
  133.     }
  134.  
  135.     return null;    
  136. }
  137.  
  138. /* message types, don't localize */
  139. const MT_ATTENTION = "ATTENTION";
  140. const MT_CONT      = "CONT";
  141. const MT_ERROR     = "ERROR";
  142. const MT_HELLO     = "HELLO";
  143. const MT_HELP      = "HELP";
  144. const MT_WARN      = "WARN";
  145. const MT_INFO      = "INFO";
  146. const MT_OUTPUT    = "#OUTPUT";
  147. const MT_SOURCE    = "#SOURCE";
  148. const MT_STEP      = "#STEP";
  149. const MT_STOP      = "STOP";
  150. const MT_ETRACE    = "#ETRACE";
  151. const MT_LOG       = "#LOG";
  152. const MT_USAGE     = "USAGE";
  153. const MT_EVAL_IN   = "#EVAL-IN";
  154. const MT_EVAL_OUT  = "#EVAL-OUT";
  155. const MT_FEVAL_IN  = "#FEVAL-IN";
  156. const MT_FEVAL_OUT = "#FEVAL-OUT";
  157.  
  158. /* these messages might be needed to report an exception at startup, before
  159.  * initMsgs() has been called. */
  160. window.MSN_ERR_STARTUP        = "msg.err.startup";
  161. window.MSN_FMT_JSEXCEPTION    = "msn.fmt.jsexception";
  162.  
  163. /* exception number -> localized message name map, keep in sync with ERR_* from
  164.  * venkman-static.js */
  165. const exceptionMsgNames = ["err.notimplemented", 
  166.                            "err.required.param",
  167.                            "err.invalid.param",
  168.                            "err.subscript.load",
  169.                            "err.no.debugger",
  170.                            "err.failure",
  171.                            "err.no.stack"];
  172.